home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / SHELL.PAK / MDICHILD.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  34 lines

  1. //----------------------------------------------------------------------------
  2. //  Project Shell
  3. //  Borland International
  4. //  Copyright ⌐ 1995, 1996 Borland International. All Rights Reserved.
  5. //
  6. //  SUBSYSTEM:    shell.exe Application
  7. //  FILE:         mdichild.h
  8. //  AUTHOR:       The OWL Team
  9. //
  10. //  OVERVIEW
  11. //  ~~~~~~~~
  12. //  Class definition for TShellMDIChild (TMDIChild).
  13. //
  14. //----------------------------------------------------------------------------
  15. #if !defined(mdichild_h)              // Sentry, use file only if it's not already included.
  16. #define mdichild_h
  17.  
  18. #include "shellapp.rh"            // Definition of all resources.
  19.  
  20.  
  21. //{{TMDIChild = TShellMDIChild}}
  22. class TShellMDIChild : public TMDIChild {
  23.   public:
  24.     TShellMDIChild(TMDIClient& parent, const char far* title, TWindow* clientWnd,
  25.                   TShellItem* item = 0, bool shrinkToClient = false,
  26.                   TModule* module = 0);
  27.     virtual ~TShellMDIChild();
  28.     bool SetIcon(HICON icon);
  29.     bool SetIconSm(HICON icon);
  30. };    //{{TShellMDIChild}}
  31.  
  32.  
  33. #endif  // mdichild_h sentry.
  34.